for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
Object.defineProperty(document, 'CSVLink', {
// value: document.createElement('a'),
createElement: (val) => {
return document.createElement(val)
}
});
const constantDate = new Date('2018-03-23T04:41:20')
constantDate
Date = class extends Date {
Date
constructor() {
super();
return constantDate
/** global: constantDate */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.